iT邦幫忙

2021 iThome 鐵人賽

DAY 16
0
自我挑戰組

學習30天的Python系列 第 16

學習Python紀錄Day16 - 使用Matplotlib繪製圖表

  • 分享至 

  • xImage
  •  

使用Matplotlib繪製圖表

安裝matplotlib套件的命令列指令

pip install matplotlib

繪製折線圖

匯入Matplotlib套件的pyplot模組(別名是plt)

import matplotlib.pyplot as plt

使用單一串列繪製折線圖
利用兩個串列資料分別代表x軸和y軸,繪製出商品銷售量折線圖。

  • plot()的兩個參數依序為x軸y軸
  • show()顯示圖表
  • range(start, stop, step)
    X軸:月份(monthes)
    Y軸:銷量(sales)
months = range(1, 12, 2)
sales = [20, 21, 20.7, 22, 22.2, 22.8]
plt.plot(months, sales)
plt.show()

執行結果:
圖表1

更改線條外觀

常用線型字元

線型字元
"-" 實線
"--" 短劃虛線
"." 點虛線
"-:" 短劃點虛線

常用的色彩字元

色彩字元
"k" 黑色
"w" 白色
"r" 紅色
"g" 綠色
"b" 藍色
"y" 黃色
"c" 青色(cyan)
"m" 洋紅色(magenta)

**常用標記符號字元

標記符號字元
"."
"," 像素
"o" 圓形
"s" 方形
"^" 三角形

上一篇
學習Python紀錄Day15 - 使用模組取得網路資料
下一篇
學習Python紀錄Day17 - 圖表設計
系列文
學習30天的Python30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言